home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / text / tascii-1.000 / tascii-1 / tascii-1.0 / Makefile < prev    next >
Encoding:
Makefile  |  1996-03-25  |  320 b   |  21 lines

  1. # Makefile     Makefile for tascii v1.0 on Linux
  2. #              23 March 1996
  3.  
  4. CFLAGS    = -Wall -O2 -m386
  5. LDFLAGS = -s -N
  6.  
  7. MANDIR    = /usr/man
  8.  
  9. all: tascii
  10.  
  11. tascii: tascii.o
  12.  
  13. tascii.o: tascii.c
  14.  
  15. install: all
  16.     install -s -m 755 tascii  /usr/bin/
  17.     install -m 444 tascii.man $(MANDIR)/man1/tascii.man
  18.  
  19. clean:
  20.     rm -f tascii *.o
  21.